home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-20 | 1.2 KB | 49 lines | [TEXT/MPS ] |
- ;------------------------------------------------------------------------------
- ;
- ; FILENAME
- ; OldApp.a
- ;
- ; DESCRIPTION
- ; Contains the jump table for the old-application compatibility
- ; messages we override.
- ;
- ; COPYRIGHT
- ; Copyright © 1995 Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Modification history
- ; 06/14/95 - Dave Hersey - Version 1.0.3 to fix a bug in
- ; CustomBufferingAndIO.c when creating
- ; high-res PICTs, and to make the size
- ; of buffers more flexible.
- ;
- ; 05/26/95 - Dave Hersey - Version 1.0.2 to add the new 'outp'
- ; desktop printer resource in NewApp.c.
- ;
- ; 05/03/95 - Dave Hersey - Version 1.0.1 to fix some minor bugs in
- ; CustomBufferingAndIO.c.
- ;
- ; 01/14/95 - Dave Hersey - Created from the shell of a hollowed-out
- ; ImageWriter driver.
- ;
- ;--------------------------------------------------------------------------------
-
- CASE OBJ
- STRING ASIS
-
- SD_JumpTable PROC EXPORT
- dc.l 0
-
- ; Overrides for the compatibility messages we override
-
- IMPORT SD_ConvertPrintRecordTo
- JMP SD_ConvertPrintRecordTo
-
- IMPORT SD_ConvertPrintRecordFrom
- JMP SD_ConvertPrintRecordFrom
-
- IMPORT SD_PrValidate
- JMP SD_PrValidate
-
- END
-